Overview
This endpoint retrieves the current state of an Order aggregate by replaying events from the event store, following our event sourcing pattern within the Ordering bounded context.
Implementation Details
The Order Summary query is implemented using event sourcing and projections:
Loading graph...
Key Components
- OrderSummaryInfo: A lightweight projection model that captures essential order information
- MultiStreamProjection: Projects events from multiple streams into a single read model
- Event Handlers: Apply specific events to update the projection state
- Marten: Document database with event sourcing capabilities that manages the projection
Technical Implementation
The Order Summary endpoint demonstrates several advanced patterns:
- Event Sourcing: The system stores all domain events and reconstructs state by replaying them
- CQRS (Command Query Responsibility Segregation): Separate read and write models
- Projections: Transform event streams into optimized read models
- Multi-Stream Aggregation: Combine events from different streams to build a cohesive view
This endpoint demonstrates the CQRS principle by providing a dedicated read model optimized for client consumption. The Order aggregate rebuilds its state by sequentially applying all recorded domain events associated with the specified order ID.
Architecture
GET (/api/v1/orders/{id}/summary)
Path Parameters
- id (path) (required): The unique identifier of the order to retrieve summary for
Example Usage
curl -X GET "https://api.bookworm.com/api/v1/orders/{orderId}/summary"
Responses
200 OK
Returns a lightweight summary of the order’s current state.
404 Not Found
Returned when no events exist for the specified order ID.